home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / FireMan.swf / scripts / frame_451 / PlaceObject2_113_25 / CLIPACTIONRECORD onClipEvent(keyDown).as next >
Encoding:
Text File  |  2008-09-12  |  331 b   |  19 lines

  1. onClipEvent(keyDown){
  2.    function parse(clave)
  3.    {
  4.       for(i in cheatlist)
  5.       {
  6.          if(clave == cheatlist[i])
  7.          {
  8.             read = false;
  9.             s.start();
  10.          }
  11.       }
  12.    }
  13.    if(read)
  14.    {
  15.       _root.cheat += String.fromCharCode(Key.getAscii());
  16.       parse(_root.cheat);
  17.    }
  18. }
  19.